home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 38
/
Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso
/
-coverdisks-
/
122a
/
meexchange
/
meexchange.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-02-05
|
231b
|
20 lines
/*
ARexx-Test-Script für MEExchange
*/
OPTIONS RESULTS
ADDRESS MEEXCHANGE.REXX
SAY "Wähle ein Befehl aus:"
DO FOREVER
Options PROMPT "Meine Wahl: "
PULL befehl
if befehl="" then
Break
Else
befehl
say result
end
ENDE